home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / liboctave / CmplxSVD.cc < prev    next >
C/C++ Source or Header  |  1997-01-29  |  4KB  |  163 lines

  1. /*
  2.  
  3. Copyright (C) 1996 John W. Eaton
  4.  
  5. This file is part of Octave.
  6.  
  7. Octave is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2, or (at your option) any
  10. later version.
  11.  
  12. Octave is distributed in the hope that it will be useful, but WITHOUT
  13. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Octave; see the file COPYING.  If not, write to the Free
  19. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. */
  22.  
  23. #if defined (__GNUG__)
  24. #pragma implementation
  25. #endif
  26.  
  27. #ifdef HAVE_CONFIG_H
  28. #include <config.h>
  29. #endif
  30.  
  31. #include "CmplxSVD.h"
  32. #include "f77-fcn.h"
  33. #include "lo-error.h"
  34. #include "mx-inlines.cc"
  35.  
  36. extern "C"
  37. {
  38.   int F77_FCN (zgesvd, ZGESVD) (const char*, const char*, const int&,
  39.                 const int&, Complex*, const int&,
  40.                 double*, Complex*, const int&,
  41.                 Complex*, const int&, Complex*,
  42.                 const int&, double*, int&, long,
  43.                 long);
  44. }
  45.  
  46. ComplexMatrix
  47. ComplexSVD::left_singular_matrix (void) const
  48. {
  49.   if (type_computed == SVD::sigma_only)
  50.     {
  51.       (*current_liboctave_error_handler)
  52.     ("ComplexSVD: U not computed because type == SVD::sigma_only");
  53.       return ComplexMatrix ();
  54.     }
  55.   else
  56.     return left_sm;
  57. }
  58.  
  59. ComplexMatrix
  60. ComplexSVD::right_singular_matrix (void) const
  61. {
  62.   if (type_computed == SVD::sigma_only)
  63.     {
  64.       (*current_liboctave_error_handler)
  65.     ("ComplexSVD: V not computed because type == SVD::sigma_only");
  66.       return ComplexMatrix ();
  67.     }
  68.   else
  69.     return right_sm;
  70. }
  71.  
  72. int
  73. ComplexSVD::init (const ComplexMatrix& a, SVD::type svd_type)
  74. {
  75.   int info;
  76.  
  77.   int m = a.rows ();
  78.   int n = a.cols ();
  79.  
  80.   ComplexMatrix atmp = a;
  81.   Complex *tmp_data = atmp.fortran_vec ();
  82.  
  83.   int min_mn = m < n ? m : n;
  84.   int max_mn = m > n ? m : n;
  85.  
  86.   char jobu = 'A';
  87.   char jobv = 'A';
  88.  
  89.   int ncol_u = m;
  90.   int nrow_vt = n;
  91.   int nrow_s = m;
  92.   int ncol_s = n;
  93.  
  94.   switch (svd_type)
  95.     {
  96.     case SVD::economy:
  97.       jobu = jobv = 'S';
  98.       ncol_u = nrow_vt = nrow_s = ncol_s = min_mn;
  99.       break;
  100.  
  101.     case SVD::sigma_only:
  102.  
  103.       // Note:  for this case, both jobu and jobv should be 'N', but
  104.       // there seems to be a bug in dgesvd from Lapack V2.0.  To
  105.       // demonstrate the bug, set both jobu and jobv to 'N' and find
  106.       // the singular values of [eye(3), eye(3)].  The result is
  107.       // [-sqrt(2), -sqrt(2), -sqrt(2)].
  108.  
  109.       jobu = 'O';
  110.       jobv = 'N';
  111.       ncol_u = nrow_vt = 1;
  112.       break;
  113.  
  114.     default:
  115.       break;
  116.     }
  117.  
  118.   type_computed = svd_type;
  119.  
  120.   if (! (jobu == 'N' || jobu == 'O'))
  121.     left_sm.resize (m, ncol_u);
  122.  
  123.   Complex *u = left_sm.fortran_vec ();
  124.  
  125.   sigma.resize (nrow_s, ncol_s);
  126.   double *s_vec = sigma.fortran_vec ();
  127.  
  128.   if (! (jobv == 'N' || jobv == 'O'))
  129.     right_sm.resize (nrow_vt, n);
  130.  
  131.   Complex *vt = right_sm.fortran_vec ();
  132.  
  133.   int lwork = 2*min_mn + max_mn;
  134.  
  135.   Array<Complex> work (lwork);
  136.   Complex *pwork = work.fortran_vec ();
  137.  
  138.   int lrwork = 5*max_mn;
  139.  
  140.   Array<double> rwork (lrwork);
  141.   double *prwork = rwork.fortran_vec ();
  142.  
  143.   F77_XFCN (zgesvd, ZGESVD, (&jobu, &jobv, m, n, tmp_data, m, s_vec, u,
  144.                  m, vt, nrow_vt, pwork, lwork, prwork, info,
  145.                  1L, 1L));
  146.  
  147.   if (f77_exception_encountered)
  148.     (*current_liboctave_error_handler) ("unrecoverable error in zgesvd");
  149.   else
  150.     {
  151.       if (! (jobv == 'N' || jobv == 'O'))
  152.     right_sm = right_sm.hermitian ();
  153.     }
  154.  
  155.   return info;
  156. }
  157.  
  158. /*
  159. ;;; Local Variables: ***
  160. ;;; mode: C++ ***
  161. ;;; End: ***
  162. */
  163.